home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 1: Comms & Networking / Almathera Ten on Ten - Disc 1: Comms & Networking.iso / amiga-useful / perl / cscript / readme < prev   
Text File  |  1995-05-04  |  1KB  |  30 lines

  1.  
  2. Usage: cscript {options} scriptname
  3.  
  4. Cscript takes a script and turns it into an executable. It is meant to be a
  5. subsitute for systems which do not have the Unix '#!' automatic interpreter
  6. invocation feature.
  7.  
  8. The executable basically spits the script into a temporary file and invokes
  9. the specified interpreter on it.
  10.  
  11. Options:
  12.  
  13. -i <name> : Specify an alternate interpreter. Default is "perl"
  14. -o <name> : Specify an alternate program name. Default is script name with
  15.             any "." suffix stripped. (i.e. playmod.pl -> playmod)
  16. -v        : Verbose mode.
  17. -c        : Produce C code only. Do Not try to invoke default C compiler
  18.             (GCC).
  19.  
  20. If the default interpreter is not perl and you do not wish to use the -i
  21. option, you can just put a Unix "#!/interpreter_pathspec" type line in the
  22. file and cscript will try to use that instead. (provided the scripting
  23. language understands '#' as a comment :^)
  24.  
  25. For further documentation, see the source code. :^)
  26.  
  27. Please let me know if this program is useful to you!
  28.  
  29. -KTD
  30.